home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-06-25 | 611 b | 34 lines | [TEXT/pdos] |
- {**********************************************************************
- {*
- {* Darts uUtils -- Version 3.0 (interface)
- {*
- {* Copyright (c)
- {* Apple Computer, Inc. 1986-1989
- {* All Rights Reserved.
- {*
- {* Developer Technical Support Apple II Sample Code
- {*
- {* This file contains the interface to the code which implements
- {* various utility routines used by the program.
- {*
- {**********************************************************************}
-
- Unit uUtils;
-
- INTERFACE
-
- USES
- types,
- locator,
- intMath;
-
-
-
- FUNCTION IntToString (i : Integer): STR255;
-
- IMPLEMENTATION
-
- {$i uUtils.inc.p }
-
- END.
-